home *** CD-ROM | disk | FTP | other *** search
- package sun.print;
-
- import javax.print.attribute.PrintRequestAttribute;
-
- public final class SunPageSelection implements PrintRequestAttribute {
- public static final SunPageSelection ALL = new SunPageSelection(0);
- public static final SunPageSelection RANGE = new SunPageSelection(1);
- public static final SunPageSelection SELECTION = new SunPageSelection(2);
- private int pages;
-
- public SunPageSelection(int var1) {
- this.pages = var1;
- }
-
- public final Class getCategory() {
- return SunPageSelection.class;
- }
-
- public final String getName() {
- return "sun-page-selection";
- }
-
- public String toString() {
- return "page-selection: " + this.pages;
- }
- }
-